From b5d8fa2d8759e16e22b3368f6eb14a7a24712e5f Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Thu, 13 Oct 2005 11:12:11 +0100 Subject: [PATCH] Fix client dependency on libxenstore in Makefile. Signed-off-by: Keir Fraser --- tools/xenstore/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/xenstore/Makefile b/tools/xenstore/Makefile index efae68ae3e..32194309d1 100644 --- a/tools/xenstore/Makefile +++ b/tools/xenstore/Makefile @@ -34,8 +34,8 @@ testcode: xs_test xenstored_test xs_random xenstored: xenstored_core.o xenstored_watch.o xenstored_domain.o xenstored_transaction.o xs_lib.o talloc.o utils.o tdb.o $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -lxenctrl -o $@ -$(CLIENTS): xenstore-%: xenstore_%.o - $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -lxenctrl -L. -lxenstore -o $@ +$(CLIENTS): xenstore-%: xenstore_%.o libxenstore.so + $(LINK.o) $< $(LOADLIBES) $(LDLIBS) -lxenctrl -L. -lxenstore -o $@ $(CLIENTS_OBJS): xenstore_%.o: xenstore_client.c $(COMPILE.c) -DCLIENT_$(*F) -o $@ $< -- 2.30.2